home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
WINDOWS
/
FSRCHWIN.ARJ
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-07-05
|
455b
|
18 lines
echo off
if "%1" == "" goto missing
if not exist %1:\fsrch.exe goto missing
if not exist %2:*.* goto missing
%2:
md \fsrch
cd \fsrch
echo on
copy %1:\fsrch.exe %2:\fsrch\fsrch.exe
copy %1:\fsrch.hlp %2:\fsrch\fsrch.hlp
copy %1:\fsrch.ima %2:\fsrch\fsrch.ima
goto done
:missing
echo Call Install with "INSTALL x y" where
echo x = drive letter for FSRCH installation files
echo y = drive letter for target of installation
:done